home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000327_news@columbia.edu _Fri Feb 28 14:57:29 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA18107
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 28 Feb 1997 14:57:29 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA27547
  7.     for kermit.misc@watsun; Fri, 28 Feb 1997 14:57:28 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Using telnet command in scripts?
  12. Date: 28 Feb 1997 19:57:24 GMT
  13. Organization: Columbia University
  14. Lines: 18
  15. Message-ID: <5f7db4$42t$1@apakabar.cc.columbia.edu>
  16. References: <3317352F.2932@PentaTechInc.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6666
  19.  
  20. In article <3317352F.2932@PentaTechInc.com>,
  21. Nels P. Olsen <Nels.Olsen@PentaTechInc.com> wrote:
  22. : I'm trying to use the telnet command in a kermit script.
  23. : Unfortunately, the documentation says that the telnet command
  24. : automatically enters CONNECT mode.  This prevents the script
  25. : from continuing to login to a modem server.
  26. The TELNET command is a shortcut for SET NETWORK TCP/IP, SET HOST
  27. to the desired host, and then if successful CONNECT.  So, like it
  28. says in the manual, "Using C-Kermit", which includes three chapters
  29. on script programming with numerous examples, use SET HOST in scripts
  30. if you want subsequent i/o to be done by script commands.  Use TELNET
  31. in scripts only if you want to turn control over to the user at the
  32. keyboard.  Find more information about the manual at:
  33.  
  34.   http://www.columbia.edu/kermit/ck60manual.html
  35.  
  36. - Frank